.about-container {
    width: 62.5%;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.8;
    font-family: "Segoe UI", sans-serif;
    background-color: #f9fbff;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.about-intro {
    font-size: 18px;
    color: #444;
    text-align: center;
    margin-bottom: 40px;
}

.about-section {
    background: #ffffff;
    padding: 20px 25px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.about-section h2 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.about-section ul {
    margin: 0;
    padding: 0 0 0 18px;
}

.about-section ul li {
    margin-bottom: 8px;
    color: #333;
}


/* Responsive */
@media (max-width: 916px) {

    .about-container {
        width: 80%;
        padding: 15px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-section {
        padding: 18px 15px;
    }
    
    .about-section h2 {
        font-size: 20px;
    }
    
    .about-intro {
        font-size: 16px;
    }


    .about-container.show {
        position: relative;
        top: 350px;
    }

}
